home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / hp48_2 / pxadd < prev    next >
Text File  |  1995-03-31  |  344b  |  16 lines

  1.  
  2. @ Now can anyone do faster than this?  I do not consider machine code 
  3. @ cheating ;-) 
  4. @USAGE: { #x #y } { #x1 #y1 } PXADD --> { #(x+x1) #(y+y1) } 
  5. %%HP: T(3)A(D)F(.); 
  6. @ Checksum: # BA68h 
  7. @ Bytes: 57        (When stored in a variable called PXADD) 
  8. \<< LIST\-> DROP 3 
  9. ROLLD OVER 1 GET + 
  10. 3 ROLLD 2 GET + 2 
  11. \->LIST 
  12. \>> 
  13.